home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / Makefile.std < prev    next >
Encoding:
Makefile  |  1995-05-10  |  1.3 KB  |  49 lines

  1. #
  2. #   @(#)Makefile.std    5.2 94/12/28
  3. #
  4. #   Top-level Makefile for xmcd, cda and libdi
  5. #
  6. #    xmcd  - Motif(tm) CD Audio Player
  7. #    cda   - Command-line CD Audio Player
  8. #    libdi - CD Audio Player Device Interface Library
  9. #
  10. #   NOTE: You should use this only if you don't have imake!
  11. #
  12. #   Copyright (C) 1995  Ti Kan
  13. #   E-mail: ti@amb.org
  14. #
  15. #   This program is free software; you can redistribute it and/or modify
  16. #   it under the terms of the GNU General Public License as published by
  17. #   the Free Software Foundation; either version 2 of the License, or
  18. #   (at your option) any later version.
  19. #
  20. #   This program is distributed in the hope that it will be useful,
  21. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. #   GNU General Public License for more details.
  24. #
  25. #   You should have received a copy of the GNU General Public License
  26. #   along with this program; if not, write to the Free Software
  27. #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28. #
  29.  
  30. include make.inc
  31.  
  32. SUBDIRS=common.d \
  33.     libdi.d \
  34.     xmcd.d \
  35.     cda.d \
  36.     wm2xmcd.d
  37.  
  38. all:
  39.     for i in $(SUBDIRS) ;\
  40.     do \
  41.         (cd $$i; $(MAKE) $@) ;\
  42.     done
  43.  
  44.  
  45. install:
  46.     @BINDIR=$(BINDIR) LIBDIR=$(LIBDIR) MANFILE=$(MANDIR)/xmcd$(MANSUF) $(SHELL) ./install.sh -n
  47.  
  48.  
  49.